home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 January: Mac OS SDK / Dev.CD Jan 96 SDK / Dev.CD Jan 96 SDK1.toast / Development Kits (Disc 1) / MacODBC / ODBC Tools / SampleDriver / INFO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-16  |  512 b   |  32 lines  |  [TEXT/MPS ]

  1.  
  2.     /*
  3.     ** INFO.C - This is the module containing the code for SQL for
  4.     ** executing information functions.
  5.     **
  6.     ** (C) Copyright 1991, 1992 By Microsoft Corp.
  7.     */
  8.  
  9.  
  10. #include "sample.h"
  11.  
  12.  
  13. SQL_PRE_API RETCODE SQL_API
  14. SQLGetInfo(
  15.     HDBC        hdbc,
  16.     UWORD       fInfoType,
  17.     PTR         rgbInfoValue,
  18.     SWORD       cbInfoValueMax,
  19.     SWORD  FAR *pcbInfoValue)
  20. {
  21.     return SQL_SUCCESS;
  22. }
  23.  
  24.  
  25. SQL_PRE_API RETCODE SQL_API
  26. SQLGetTypeInfo(
  27.     HSTMT       hstmt,
  28.     SWORD       fSqlType)
  29. {
  30.     return SQL_SUCCESS;
  31. }
  32.